(0) Obligation:
Runtime Complexity TRS:
The TRS R consists of the following rules:
app(nil, k) → k
app(l, nil) → l
app(cons(x, l), k) → cons(x, app(l, k))
sum(cons(x, nil)) → cons(x, nil)
sum(cons(x, cons(y, l))) → sum(cons(plus(x, y), l))
sum(app(l, cons(x, cons(y, k)))) → sum(app(l, sum(cons(x, cons(y, k)))))
sum(plus(cons(0, x), cons(y, l))) → pred(sum(cons(s(x), cons(y, l))))
pred(cons(s(x), nil)) → cons(x, nil)
plus(s(x), s(y)) → s(s(plus(if(gt(x, y), x, y), if(not(gt(x, y)), id(x), id(y)))))
plus(s(x), x) → plus(if(gt(x, x), id(x), id(x)), s(x))
plus(zero, y) → y
plus(id(x), s(y)) → s(plus(x, if(gt(s(y), y), y, s(y))))
id(x) → x
if(true, x, y) → x
if(false, x, y) → y
not(x) → if(x, false, true)
gt(s(x), zero) → true
gt(zero, y) → false
gt(s(x), s(y)) → gt(x, y)
Rewrite Strategy: FULL
(1) DecreasingLoopProof (EQUIVALENT transformation)
The following loop(s) give(s) rise to the lower bound Ω(n1):
The rewrite sequence
app(cons(x, l), k) →+ cons(x, app(l, k))
gives rise to a decreasing loop by considering the right hand sides subterm at position [1].
The pumping substitution is [l / cons(x, l)].
The result substitution is [ ].
(2) BOUNDS(n^1, INF)
(3) RenamingProof (EQUIVALENT transformation)
Renamed function symbols to avoid clashes with predefined symbol.
(4) Obligation:
Runtime Complexity Relative TRS:
The TRS R consists of the following rules:
app(nil, k) → k
app(l, nil) → l
app(cons(x, l), k) → cons(x, app(l, k))
sum(cons(x, nil)) → cons(x, nil)
sum(cons(x, cons(y, l))) → sum(cons(plus(x, y), l))
sum(app(l, cons(x, cons(y, k)))) → sum(app(l, sum(cons(x, cons(y, k)))))
sum(plus(cons(0', x), cons(y, l))) → pred(sum(cons(s(x), cons(y, l))))
pred(cons(s(x), nil)) → cons(x, nil)
plus(s(x), s(y)) → s(s(plus(if(gt(x, y), x, y), if(not(gt(x, y)), id(x), id(y)))))
plus(s(x), x) → plus(if(gt(x, x), id(x), id(x)), s(x))
plus(zero, y) → y
plus(id(x), s(y)) → s(plus(x, if(gt(s(y), y), y, s(y))))
id(x) → x
if(true, x, y) → x
if(false, x, y) → y
not(x) → if(x, false, true)
gt(s(x), zero) → true
gt(zero, y) → false
gt(s(x), s(y)) → gt(x, y)
S is empty.
Rewrite Strategy: FULL
(5) TypeInferenceProof (BOTH BOUNDS(ID, ID) transformation)
Infered types.
(6) Obligation:
TRS:
Rules:
app(nil, k) → k
app(l, nil) → l
app(cons(x, l), k) → cons(x, app(l, k))
sum(cons(x, nil)) → cons(x, nil)
sum(cons(x, cons(y, l))) → sum(cons(plus(x, y), l))
sum(app(l, cons(x, cons(y, k)))) → sum(app(l, sum(cons(x, cons(y, k)))))
sum(plus(cons(0', x), cons(y, l))) → pred(sum(cons(s(x), cons(y, l))))
pred(cons(s(x), nil)) → cons(x, nil)
plus(s(x), s(y)) → s(s(plus(if(gt(x, y), x, y), if(not(gt(x, y)), id(x), id(y)))))
plus(s(x), x) → plus(if(gt(x, x), id(x), id(x)), s(x))
plus(zero, y) → y
plus(id(x), s(y)) → s(plus(x, if(gt(s(y), y), y, s(y))))
id(x) → x
if(true, x, y) → x
if(false, x, y) → y
not(x) → if(x, false, true)
gt(s(x), zero) → true
gt(zero, y) → false
gt(s(x), s(y)) → gt(x, y)
Types:
app :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
nil :: nil:cons:0':s:zero:true:false
cons :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
sum :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
plus :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
0' :: nil:cons:0':s:zero:true:false
pred :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
s :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
if :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
gt :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
not :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
id :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
zero :: nil:cons:0':s:zero:true:false
true :: nil:cons:0':s:zero:true:false
false :: nil:cons:0':s:zero:true:false
hole_nil:cons:0':s:zero:true:false1_0 :: nil:cons:0':s:zero:true:false
gen_nil:cons:0':s:zero:true:false2_0 :: Nat → nil:cons:0':s:zero:true:false
(7) OrderProof (LOWER BOUND(ID) transformation)
Heuristically decided to analyse the following defined symbols:
app,
sum,
plus,
gtThey will be analysed ascendingly in the following order:
app < sum
plus < sum
gt < plus
(8) Obligation:
TRS:
Rules:
app(
nil,
k) →
kapp(
l,
nil) →
lapp(
cons(
x,
l),
k) →
cons(
x,
app(
l,
k))
sum(
cons(
x,
nil)) →
cons(
x,
nil)
sum(
cons(
x,
cons(
y,
l))) →
sum(
cons(
plus(
x,
y),
l))
sum(
app(
l,
cons(
x,
cons(
y,
k)))) →
sum(
app(
l,
sum(
cons(
x,
cons(
y,
k)))))
sum(
plus(
cons(
0',
x),
cons(
y,
l))) →
pred(
sum(
cons(
s(
x),
cons(
y,
l))))
pred(
cons(
s(
x),
nil)) →
cons(
x,
nil)
plus(
s(
x),
s(
y)) →
s(
s(
plus(
if(
gt(
x,
y),
x,
y),
if(
not(
gt(
x,
y)),
id(
x),
id(
y)))))
plus(
s(
x),
x) →
plus(
if(
gt(
x,
x),
id(
x),
id(
x)),
s(
x))
plus(
zero,
y) →
yplus(
id(
x),
s(
y)) →
s(
plus(
x,
if(
gt(
s(
y),
y),
y,
s(
y))))
id(
x) →
xif(
true,
x,
y) →
xif(
false,
x,
y) →
ynot(
x) →
if(
x,
false,
true)
gt(
s(
x),
zero) →
truegt(
zero,
y) →
falsegt(
s(
x),
s(
y)) →
gt(
x,
y)
Types:
app :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
nil :: nil:cons:0':s:zero:true:false
cons :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
sum :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
plus :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
0' :: nil:cons:0':s:zero:true:false
pred :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
s :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
if :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
gt :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
not :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
id :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
zero :: nil:cons:0':s:zero:true:false
true :: nil:cons:0':s:zero:true:false
false :: nil:cons:0':s:zero:true:false
hole_nil:cons:0':s:zero:true:false1_0 :: nil:cons:0':s:zero:true:false
gen_nil:cons:0':s:zero:true:false2_0 :: Nat → nil:cons:0':s:zero:true:false
Generator Equations:
gen_nil:cons:0':s:zero:true:false2_0(0) ⇔ nil
gen_nil:cons:0':s:zero:true:false2_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons:0':s:zero:true:false2_0(x))
The following defined symbols remain to be analysed:
app, sum, plus, gt
They will be analysed ascendingly in the following order:
app < sum
plus < sum
gt < plus
(9) RewriteLemmaProof (LOWER BOUND(ID) transformation)
Proved the following rewrite lemma:
app(
gen_nil:cons:0':s:zero:true:false2_0(
n4_0),
gen_nil:cons:0':s:zero:true:false2_0(
b)) →
gen_nil:cons:0':s:zero:true:false2_0(
+(
n4_0,
b)), rt ∈ Ω(1 + n4
0)
Induction Base:
app(gen_nil:cons:0':s:zero:true:false2_0(0), gen_nil:cons:0':s:zero:true:false2_0(b)) →RΩ(1)
gen_nil:cons:0':s:zero:true:false2_0(b)
Induction Step:
app(gen_nil:cons:0':s:zero:true:false2_0(+(n4_0, 1)), gen_nil:cons:0':s:zero:true:false2_0(b)) →RΩ(1)
cons(nil, app(gen_nil:cons:0':s:zero:true:false2_0(n4_0), gen_nil:cons:0':s:zero:true:false2_0(b))) →IH
cons(nil, gen_nil:cons:0':s:zero:true:false2_0(+(b, c5_0)))
We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).
(10) Complex Obligation (BEST)
(11) Obligation:
TRS:
Rules:
app(
nil,
k) →
kapp(
l,
nil) →
lapp(
cons(
x,
l),
k) →
cons(
x,
app(
l,
k))
sum(
cons(
x,
nil)) →
cons(
x,
nil)
sum(
cons(
x,
cons(
y,
l))) →
sum(
cons(
plus(
x,
y),
l))
sum(
app(
l,
cons(
x,
cons(
y,
k)))) →
sum(
app(
l,
sum(
cons(
x,
cons(
y,
k)))))
sum(
plus(
cons(
0',
x),
cons(
y,
l))) →
pred(
sum(
cons(
s(
x),
cons(
y,
l))))
pred(
cons(
s(
x),
nil)) →
cons(
x,
nil)
plus(
s(
x),
s(
y)) →
s(
s(
plus(
if(
gt(
x,
y),
x,
y),
if(
not(
gt(
x,
y)),
id(
x),
id(
y)))))
plus(
s(
x),
x) →
plus(
if(
gt(
x,
x),
id(
x),
id(
x)),
s(
x))
plus(
zero,
y) →
yplus(
id(
x),
s(
y)) →
s(
plus(
x,
if(
gt(
s(
y),
y),
y,
s(
y))))
id(
x) →
xif(
true,
x,
y) →
xif(
false,
x,
y) →
ynot(
x) →
if(
x,
false,
true)
gt(
s(
x),
zero) →
truegt(
zero,
y) →
falsegt(
s(
x),
s(
y)) →
gt(
x,
y)
Types:
app :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
nil :: nil:cons:0':s:zero:true:false
cons :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
sum :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
plus :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
0' :: nil:cons:0':s:zero:true:false
pred :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
s :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
if :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
gt :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
not :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
id :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
zero :: nil:cons:0':s:zero:true:false
true :: nil:cons:0':s:zero:true:false
false :: nil:cons:0':s:zero:true:false
hole_nil:cons:0':s:zero:true:false1_0 :: nil:cons:0':s:zero:true:false
gen_nil:cons:0':s:zero:true:false2_0 :: Nat → nil:cons:0':s:zero:true:false
Lemmas:
app(gen_nil:cons:0':s:zero:true:false2_0(n4_0), gen_nil:cons:0':s:zero:true:false2_0(b)) → gen_nil:cons:0':s:zero:true:false2_0(+(n4_0, b)), rt ∈ Ω(1 + n40)
Generator Equations:
gen_nil:cons:0':s:zero:true:false2_0(0) ⇔ nil
gen_nil:cons:0':s:zero:true:false2_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons:0':s:zero:true:false2_0(x))
The following defined symbols remain to be analysed:
gt, sum, plus
They will be analysed ascendingly in the following order:
plus < sum
gt < plus
(12) NoRewriteLemmaProof (LOWER BOUND(ID) transformation)
Could not prove a rewrite lemma for the defined symbol gt.
(13) Obligation:
TRS:
Rules:
app(
nil,
k) →
kapp(
l,
nil) →
lapp(
cons(
x,
l),
k) →
cons(
x,
app(
l,
k))
sum(
cons(
x,
nil)) →
cons(
x,
nil)
sum(
cons(
x,
cons(
y,
l))) →
sum(
cons(
plus(
x,
y),
l))
sum(
app(
l,
cons(
x,
cons(
y,
k)))) →
sum(
app(
l,
sum(
cons(
x,
cons(
y,
k)))))
sum(
plus(
cons(
0',
x),
cons(
y,
l))) →
pred(
sum(
cons(
s(
x),
cons(
y,
l))))
pred(
cons(
s(
x),
nil)) →
cons(
x,
nil)
plus(
s(
x),
s(
y)) →
s(
s(
plus(
if(
gt(
x,
y),
x,
y),
if(
not(
gt(
x,
y)),
id(
x),
id(
y)))))
plus(
s(
x),
x) →
plus(
if(
gt(
x,
x),
id(
x),
id(
x)),
s(
x))
plus(
zero,
y) →
yplus(
id(
x),
s(
y)) →
s(
plus(
x,
if(
gt(
s(
y),
y),
y,
s(
y))))
id(
x) →
xif(
true,
x,
y) →
xif(
false,
x,
y) →
ynot(
x) →
if(
x,
false,
true)
gt(
s(
x),
zero) →
truegt(
zero,
y) →
falsegt(
s(
x),
s(
y)) →
gt(
x,
y)
Types:
app :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
nil :: nil:cons:0':s:zero:true:false
cons :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
sum :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
plus :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
0' :: nil:cons:0':s:zero:true:false
pred :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
s :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
if :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
gt :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
not :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
id :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
zero :: nil:cons:0':s:zero:true:false
true :: nil:cons:0':s:zero:true:false
false :: nil:cons:0':s:zero:true:false
hole_nil:cons:0':s:zero:true:false1_0 :: nil:cons:0':s:zero:true:false
gen_nil:cons:0':s:zero:true:false2_0 :: Nat → nil:cons:0':s:zero:true:false
Lemmas:
app(gen_nil:cons:0':s:zero:true:false2_0(n4_0), gen_nil:cons:0':s:zero:true:false2_0(b)) → gen_nil:cons:0':s:zero:true:false2_0(+(n4_0, b)), rt ∈ Ω(1 + n40)
Generator Equations:
gen_nil:cons:0':s:zero:true:false2_0(0) ⇔ nil
gen_nil:cons:0':s:zero:true:false2_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons:0':s:zero:true:false2_0(x))
The following defined symbols remain to be analysed:
plus, sum
They will be analysed ascendingly in the following order:
plus < sum
(14) NoRewriteLemmaProof (LOWER BOUND(ID) transformation)
Could not prove a rewrite lemma for the defined symbol plus.
(15) Obligation:
TRS:
Rules:
app(
nil,
k) →
kapp(
l,
nil) →
lapp(
cons(
x,
l),
k) →
cons(
x,
app(
l,
k))
sum(
cons(
x,
nil)) →
cons(
x,
nil)
sum(
cons(
x,
cons(
y,
l))) →
sum(
cons(
plus(
x,
y),
l))
sum(
app(
l,
cons(
x,
cons(
y,
k)))) →
sum(
app(
l,
sum(
cons(
x,
cons(
y,
k)))))
sum(
plus(
cons(
0',
x),
cons(
y,
l))) →
pred(
sum(
cons(
s(
x),
cons(
y,
l))))
pred(
cons(
s(
x),
nil)) →
cons(
x,
nil)
plus(
s(
x),
s(
y)) →
s(
s(
plus(
if(
gt(
x,
y),
x,
y),
if(
not(
gt(
x,
y)),
id(
x),
id(
y)))))
plus(
s(
x),
x) →
plus(
if(
gt(
x,
x),
id(
x),
id(
x)),
s(
x))
plus(
zero,
y) →
yplus(
id(
x),
s(
y)) →
s(
plus(
x,
if(
gt(
s(
y),
y),
y,
s(
y))))
id(
x) →
xif(
true,
x,
y) →
xif(
false,
x,
y) →
ynot(
x) →
if(
x,
false,
true)
gt(
s(
x),
zero) →
truegt(
zero,
y) →
falsegt(
s(
x),
s(
y)) →
gt(
x,
y)
Types:
app :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
nil :: nil:cons:0':s:zero:true:false
cons :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
sum :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
plus :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
0' :: nil:cons:0':s:zero:true:false
pred :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
s :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
if :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
gt :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
not :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
id :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
zero :: nil:cons:0':s:zero:true:false
true :: nil:cons:0':s:zero:true:false
false :: nil:cons:0':s:zero:true:false
hole_nil:cons:0':s:zero:true:false1_0 :: nil:cons:0':s:zero:true:false
gen_nil:cons:0':s:zero:true:false2_0 :: Nat → nil:cons:0':s:zero:true:false
Lemmas:
app(gen_nil:cons:0':s:zero:true:false2_0(n4_0), gen_nil:cons:0':s:zero:true:false2_0(b)) → gen_nil:cons:0':s:zero:true:false2_0(+(n4_0, b)), rt ∈ Ω(1 + n40)
Generator Equations:
gen_nil:cons:0':s:zero:true:false2_0(0) ⇔ nil
gen_nil:cons:0':s:zero:true:false2_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons:0':s:zero:true:false2_0(x))
The following defined symbols remain to be analysed:
sum
(16) NoRewriteLemmaProof (LOWER BOUND(ID) transformation)
Could not prove a rewrite lemma for the defined symbol sum.
(17) Obligation:
TRS:
Rules:
app(
nil,
k) →
kapp(
l,
nil) →
lapp(
cons(
x,
l),
k) →
cons(
x,
app(
l,
k))
sum(
cons(
x,
nil)) →
cons(
x,
nil)
sum(
cons(
x,
cons(
y,
l))) →
sum(
cons(
plus(
x,
y),
l))
sum(
app(
l,
cons(
x,
cons(
y,
k)))) →
sum(
app(
l,
sum(
cons(
x,
cons(
y,
k)))))
sum(
plus(
cons(
0',
x),
cons(
y,
l))) →
pred(
sum(
cons(
s(
x),
cons(
y,
l))))
pred(
cons(
s(
x),
nil)) →
cons(
x,
nil)
plus(
s(
x),
s(
y)) →
s(
s(
plus(
if(
gt(
x,
y),
x,
y),
if(
not(
gt(
x,
y)),
id(
x),
id(
y)))))
plus(
s(
x),
x) →
plus(
if(
gt(
x,
x),
id(
x),
id(
x)),
s(
x))
plus(
zero,
y) →
yplus(
id(
x),
s(
y)) →
s(
plus(
x,
if(
gt(
s(
y),
y),
y,
s(
y))))
id(
x) →
xif(
true,
x,
y) →
xif(
false,
x,
y) →
ynot(
x) →
if(
x,
false,
true)
gt(
s(
x),
zero) →
truegt(
zero,
y) →
falsegt(
s(
x),
s(
y)) →
gt(
x,
y)
Types:
app :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
nil :: nil:cons:0':s:zero:true:false
cons :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
sum :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
plus :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
0' :: nil:cons:0':s:zero:true:false
pred :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
s :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
if :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
gt :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
not :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
id :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
zero :: nil:cons:0':s:zero:true:false
true :: nil:cons:0':s:zero:true:false
false :: nil:cons:0':s:zero:true:false
hole_nil:cons:0':s:zero:true:false1_0 :: nil:cons:0':s:zero:true:false
gen_nil:cons:0':s:zero:true:false2_0 :: Nat → nil:cons:0':s:zero:true:false
Lemmas:
app(gen_nil:cons:0':s:zero:true:false2_0(n4_0), gen_nil:cons:0':s:zero:true:false2_0(b)) → gen_nil:cons:0':s:zero:true:false2_0(+(n4_0, b)), rt ∈ Ω(1 + n40)
Generator Equations:
gen_nil:cons:0':s:zero:true:false2_0(0) ⇔ nil
gen_nil:cons:0':s:zero:true:false2_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons:0':s:zero:true:false2_0(x))
No more defined symbols left to analyse.
(18) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
app(gen_nil:cons:0':s:zero:true:false2_0(n4_0), gen_nil:cons:0':s:zero:true:false2_0(b)) → gen_nil:cons:0':s:zero:true:false2_0(+(n4_0, b)), rt ∈ Ω(1 + n40)
(19) BOUNDS(n^1, INF)
(20) Obligation:
TRS:
Rules:
app(
nil,
k) →
kapp(
l,
nil) →
lapp(
cons(
x,
l),
k) →
cons(
x,
app(
l,
k))
sum(
cons(
x,
nil)) →
cons(
x,
nil)
sum(
cons(
x,
cons(
y,
l))) →
sum(
cons(
plus(
x,
y),
l))
sum(
app(
l,
cons(
x,
cons(
y,
k)))) →
sum(
app(
l,
sum(
cons(
x,
cons(
y,
k)))))
sum(
plus(
cons(
0',
x),
cons(
y,
l))) →
pred(
sum(
cons(
s(
x),
cons(
y,
l))))
pred(
cons(
s(
x),
nil)) →
cons(
x,
nil)
plus(
s(
x),
s(
y)) →
s(
s(
plus(
if(
gt(
x,
y),
x,
y),
if(
not(
gt(
x,
y)),
id(
x),
id(
y)))))
plus(
s(
x),
x) →
plus(
if(
gt(
x,
x),
id(
x),
id(
x)),
s(
x))
plus(
zero,
y) →
yplus(
id(
x),
s(
y)) →
s(
plus(
x,
if(
gt(
s(
y),
y),
y,
s(
y))))
id(
x) →
xif(
true,
x,
y) →
xif(
false,
x,
y) →
ynot(
x) →
if(
x,
false,
true)
gt(
s(
x),
zero) →
truegt(
zero,
y) →
falsegt(
s(
x),
s(
y)) →
gt(
x,
y)
Types:
app :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
nil :: nil:cons:0':s:zero:true:false
cons :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
sum :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
plus :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
0' :: nil:cons:0':s:zero:true:false
pred :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
s :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
if :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
gt :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
not :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
id :: nil:cons:0':s:zero:true:false → nil:cons:0':s:zero:true:false
zero :: nil:cons:0':s:zero:true:false
true :: nil:cons:0':s:zero:true:false
false :: nil:cons:0':s:zero:true:false
hole_nil:cons:0':s:zero:true:false1_0 :: nil:cons:0':s:zero:true:false
gen_nil:cons:0':s:zero:true:false2_0 :: Nat → nil:cons:0':s:zero:true:false
Lemmas:
app(gen_nil:cons:0':s:zero:true:false2_0(n4_0), gen_nil:cons:0':s:zero:true:false2_0(b)) → gen_nil:cons:0':s:zero:true:false2_0(+(n4_0, b)), rt ∈ Ω(1 + n40)
Generator Equations:
gen_nil:cons:0':s:zero:true:false2_0(0) ⇔ nil
gen_nil:cons:0':s:zero:true:false2_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons:0':s:zero:true:false2_0(x))
No more defined symbols left to analyse.
(21) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
app(gen_nil:cons:0':s:zero:true:false2_0(n4_0), gen_nil:cons:0':s:zero:true:false2_0(b)) → gen_nil:cons:0':s:zero:true:false2_0(+(n4_0, b)), rt ∈ Ω(1 + n40)
(22) BOUNDS(n^1, INF)